All Questions
Tagged with sqlite3-pythondjango-models
2 questions
0votes
2answers
52views
OperationalError at /register/ no such table: CustomUser
models.py from django.db import models class CustomUser(models.Model): first_name = models.CharField(max_length=100) last_name = models.CharField(max_length=100) email = models.EmailField(...
0votes
2answers
56views
I get some error when create new model in Django
I created 2 model for one to one in Django model So model codes is very simple enter image description here I executed CMD after put the above code python manage.py migrate But I get this error ...